home *** CD-ROM | disk | FTP | other *** search
/ Risc World 3 / Risc World 3.iso / SOFTWARE / ISSUE2 / PD / VINCE / !ViNCe / Makefile_o < prev    next >
Makefile  |  2002-03-10  |  1KB  |  33 lines

  1.  
  2. CC            = cc
  3. ASM           = objasm                              
  4.  
  5. CCFlags       = -c -throwback -IC: -IOS: -DLOG -Izlib:
  6. LinkFlags     = -o $@
  7. ASMflags      = -ThrowBack -Stamp -quit -CloseExec
  8.  
  9. Libs          = OSLib:o.OSLib C:o.Stubs Zlib:zlib
  10. Objects       = o.vncviewer o.sockets o.rfbproto o.ip o.d3des \
  11.                 o.vncauth o.display o.mcode o.antitwit o.cursor
  12.  
  13. VNC:          $(Objects)
  14.               Link $(Linkflags) $(Objects) $(Libs)
  15.               Squeeze -f -v VNC
  16.  
  17. .c.o:;        $(CC) $(CCflags) $< -o $@
  18. .s.o:;        $(ASM) $(ASMflags) -from $< -to $@
  19.  
  20. # Dynamic dependencies:
  21. o.vncviewer:  c.vncviewer h.vncviewer h.display h.antitwit h.vnckeys
  22. o.sockets:    c.sockets h.ip
  23. o.rfbproto:   c.rfbproto h.vncviewer h.vncauth h.display \
  24.               c.hextile16 c.rre16 c.corre16 c.tight16    \
  25.               c.hextile8 c.rre8 c.corre8
  26. o.ip:         c.ip h.ip
  27. o.d3des:      c.d3des h.d3des
  28. o.vncauth:    c.vncauth h.d3des
  29. o.display:    c.display h.display h.mcode
  30. o.mcode:      s.mcode h.mcode
  31. o.antitwit:   c.antitwit h.antitwit
  32. o.cursor:     c.cursor
  33.